home *** CD-ROM | disk | FTP | other *** search
- //-----------------------------------------------------------------------------
- // Torque Engine
- // Copyright (c) GarageGames.Com
- //-----------------------------------------------------------------------------
- loadDir("common");
-
- package Creator
- {
- function onStart()
- {
- Parent::onStart();
- if ($Server::Dedicated)///***KCF***25/09/2006 1:17AM
- return;
- echo( "\n--------- Initializing: Torque Creator ---------" );
-
- // Scripts
- exec("./editor/editor.cs");
- exec("./editor/particleEditor.cs");
- exec("./scripts/scriptDoc.cs");
-
- // Gui's
- exec("./ui/creatorProfiles.cs");
- // exec("./ui/InspectDlg.gui"); ///***KCF***25/09/2006 1:01AM
- exec("./ui/GuiEditorGui.gui");
- }
- };
-
- activatePackage( Creator );
-